home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 4_4.lha / 4_4 / makefile < prev   
Makefile  |  1993-08-08  |  316b  |  17 lines

  1. C= CC -I. -I../../CC
  2. ll: 4_4
  3.  
  4. _4: 4_4.c
  5. $(CC) 4_4.c -o 4_4
  6.  
  7. MP= 4_4_1.cmp 4_4_2.cmp
  8. UT= 4_4_1.out 4_4_2.out
  9.  
  10. _4_1.out: 4_4 4_4_1.in ;        4_4 4_4_1.in > 4_4_1.out
  11. _4_2.out: 4_4 4_4_1.in 4_4_2.in ;    4_4 4_4_1.in 4_4_2.in > 4_4_2.out
  12.  
  13. est: all $(OUT) $(CMP)
  14. cmp 4_4_1.out 4_4_1.cmp
  15. cmp 4_4_2.out 4_4_2.cmp
  16. echo tests done
  17.